home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / thrust_2.swf / scripts / frame_20 / PlaceObject2_45_409 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Text File  |  2012-01-07  |  455b  |  19 lines

  1. onClipEvent(enterFrame){
  2.    _root.welcome = "WELCOME   " + _root.Name.toUpperCase();
  3.    if(_root.topscore > 0 && _root.Name != "Guest")
  4.    {
  5.       _root.top = _root.topscore + " POINTS";
  6.       this._visible = true;
  7.    }
  8.    if(!_root.topscore && _root.Name != "Guest")
  9.    {
  10.       _root.top = "NEVER PLAYED YET";
  11.       this._visible = false;
  12.    }
  13.    if(_root.Name == "Guest")
  14.    {
  15.       this._visible = false;
  16.       _root.top = "";
  17.    }
  18. }
  19.